home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / Oberon⁄F™ 1.2 / Preinstalled version / System / Docu / Out (.txt) < prev    next >
Encoding:
Oberon Document  |  1996-07-08  |  2.5 KB  |  53 lines  |  [oODC/obnF]

  1. Documents.StdDocumentDesc
  2. Documents.DocumentDesc
  3. Containers.ViewDesc
  4. Views.ViewDesc
  5. Stores.StoreDesc
  6. Documents.ModelDesc
  7. Containers.ModelDesc
  8. Models.ModelDesc
  9. Stores.ElemDesc
  10. TextViews.StdViewDesc
  11. TextViews.ViewDesc
  12. TextModels.StdModelDesc
  13. TextModels.ModelDesc
  14. TextModels.AttributesDesc
  15. Helvetica
  16. TextRulers.StdRulerDesc
  17. TextRulers.RulerDesc
  18. TextRulers.StdStyleDesc
  19. TextRulers.StyleDesc
  20. TextRulers.AttributesDesc
  21. Helvetica
  22. Helvetica
  23. Helvetica
  24. Helvetica
  25. Helvetica
  26. DEFINITION Out;
  27.     PROCEDURE Open;
  28.     PROCEDURE Char (ch: CHAR);
  29.     PROCEDURE Ln;
  30.     PROCEDURE Int (VAR i, n: LONGINT);
  31.     PROCEDURE Real (x: REAL; n: INTEGER);
  32.     PROCEDURE String (s: ARRAY OF CHAR);
  33. END Out.
  34. This module is provided for compatibility with the book "Programming in Oberon" (-> "Bibliography"). It is useful when learning the language. It is not recommended for use in production programs.
  35. PROCEDURE Open
  36. Brings open log window to the top. If no log window is open, a new one is opened.
  37. PROCEDURE Char (ch: CHAR)
  38. Writes a character into the log.
  39. PROCEDURE Ln
  40. Writes a carriage return into the log.
  41. PROCEDURE Int (i, n: LONGINT)
  42. Writes an integer number into the log, with n digits. If n is too small (e.g. 0) to represent the number correctly, the necessary minimal number of digits is used.
  43. PROCEDURE Real (x: REAL; n: INTEGER)
  44. Writes a real number into the log, with n digits. If n is too small (e.g. 0) to represent the number correctly, the necessary minimal number of digits is used.
  45. PROCEDURE String (s: ARRAY OF CHAR)
  46. Writes a string into the log.
  47. TextControllers.StdCtrlDesc
  48. TextControllers.ControllerDesc
  49. Containers.ControllerDesc
  50. Controllers.ControllerDesc
  51. Helvetica
  52. Documents.ControllerDesc
  53.